home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
359_11
/
patch5.000
/
EMU387_E50.CC
< prev
next >
Wrap
C/C++ Source or Header
|
1991-09-11
|
277b
|
21 lines
#include "emu.h"
#include "rmov.h"
void emu_50()
{
if (full())
return;
if (modrm > 0277)
{
// ffree st(i)
int i = modrm & 7;
st(i).tag = TW_E;
}
else
{
// fld m64real
top--;
r_mov((double *)get_modrm(), st());
}
}